home *** CD-ROM | disk | FTP | other *** search
- /*
- cvclass.h
-
- Class tree window
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #ifndef cvclass_h
- #define cvclass_h
- #include "mdiview.h"
-
- class VFont;
- class VListBox;
- class VTextBox;
- class ClassTreeView;
- class DemoAppView;
-
- class ClassView : public VMdiView {
-
- private:
- ClassTreeView *treeView;
- VListBox *listBox;
- VTextBox *msgBox;
- VFont *textFont;
- DemoAppView *mainWin;
-
- public:
- ClassView(VFrame&, DemoAppView *);
- ClassView();
- ~ClassView();
-
- VClass *iam();
- boolean free();
-
- boolean close();
- boolean listClick(int index);
- boolean listDblClick(int index);
- boolean classSelected();
- boolean givenFocus();
- };
-
- extern VClass *ClassViewCls;
- #endif /* cvclass_h */
-